Newer mingw-w64 uses an underscore-prefixed identification macro.
authorTor Lillqvist <tml@novell.com>
Tue, 17 Mar 2009 12:58:40 +0000 (12:58 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Tue, 17 Mar 2009 12:58:40 +0000 (12:58 +0000)
2009-03-17  Tor Lillqvist  <tml@novell.com>

* gtk/gtkprintoperation-win32.c: Newer mingw-w64 uses an
underscore-prefixed identification macro.

svn path=/trunk/; revision=22561

ChangeLog
gtk/gtkprintoperation-win32.c

index 7b9f71d58e23cef0c61f1285d84610fdd8596fc3..3166e5531588869908df1b381c54a02969f7e82d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-17  Tor Lillqvist  <tml@novell.com>
+
+       * gtk/gtkprintoperation-win32.c: Newer mingw-w64 uses an
+       underscore-prefixed identification macro.
+
 2009-03-13  Matthias Clasen  <mclasen@redhat.com>
 
        * README.in: Late release notes for 2.16
index 9e0227156d5941b85efd3a367d70ca5d28829803..7a9b559a931c34577f23991e03c1488d470d649a 100644 (file)
@@ -72,7 +72,7 @@ static void win32_poll_status (GtkPrintOperation *op);
 
 static const GUID myIID_IPrintDialogCallback  = {0x5852a2c3,0x6530,0x11d1,{0xb6,0xa3,0x0,0x0,0xf8,0x75,0x7b,0xf9}};
 
-#if !defined (_MSC_VER) && !defined (MINGW64)
+#if !defined (_MSC_VER) && !defined (MINGW64) && !defined (__MINGW64)
 #undef INTERFACE
 #define INTERFACE IPrintDialogCallback
 DECLARE_INTERFACE_ (IPrintDialogCallback, IUnknown)